home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-09-06 | 861 b | 44 lines | [TEXT/CWIE] |
- // DModalStuffData -- data class for Everything
-
- #pragma once
-
- #include "AMSignaler.h"
-
-
- const long idTools2 = 'Too2';
- const long idFromValuesList3 = 'Fro3';
- const long idFromMenu2 = 'Fro4';
- const long idTextList2 = 'Tex4';
-
- class AMEngine;
-
- //----------
- class DModalStuffData : public AMSignaler {
- public:
- DModalStuffData ();
- virtual ~DModalStuffData ();
-
- public:
- void ReadFromFile (AMEngine* engine);
- void WriteToFile (AMEngine* engine);
-
- public:
- SInt16 GetTools2 () const;
- void SetTools2 (SInt16 inValue);
-
- SInt16 GetFromValuesList3 () const;
- void SetFromValuesList3 (SInt16 inValue);
-
- SInt16 GetFromMenu2 () const;
- void SetFromMenu2 (SInt16 inValue);
-
- SInt16 GetTextList2 () const;
- void SetTextList2 (SInt16 inValue);
-
- protected:
- SInt16 mTools2;
- SInt16 mFromValuesList3;
- SInt16 mFromMenu2;
- SInt16 mTextList2;
- };
-